- 下のような指定を
:rootに指定しておく。
:where(:root) {
overflow-wrap: anywhere; /* 収まらない場合に折り返す */
/* word-break: initial; 単語の分割はデフォルトに依存(初期値のため指定しなくて良い) */| 1. Designing Data-Intensive Applications, Martin Kleppmann (4.70) | |
| 2. Kubernetes in Action, Marko Luksa (4.59) | |
| 3. Unit Testing: Principles, Practices, and Patterns, Vladimir Khorikov (4.57) | |
| 4. Effective Java, Joshua Bloch (4.51) | |
| 5. Systems Performance: Enterprise and the Cloud, Brendan Gregg (4.48) | |
| 6. Structure and Interpretation of Computer Programs, Harold Abelson (4.47) | |
| 7. The C Programming Language, Brian W. Kernighan (4.44) | |
| 8. System Design Interview – An Insider's Guide: Volume 2, Alex Xu (4.44) | |
| 9. Learning Domain-Driven Design: Aligning Software Architecture and Business Strategy, Vladik Khononov (4.43) | |
| 10. Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People, Aditya Y. Bhargava (4.41) |
| #The following lines should be added to your .bashrc file to use the git-output.awk file | |
| SEP="║" | |
| SEP2="•" | |
| function parse_git_output { | |
| path=$(pwd) | |
| # Don't do git status over networked paths. | |
| # It kills performance, and the prompt takes forever to return. | |
| if [[ $path =~ "/net/" ]]; then | |
| return |
This guide covers the setup process for NVIDIA enterprise GPUs (A100, H100, H200) on Linux systems—focusing on Ubuntu LTS distributions (20.04, 22.04, and 24.04). It details the installation of the latest drivers and CUDA toolkits, along with optional components for containerized or specialized workloads.
| $hosturl = Read-Host -Prompt "Server Host URL" | |
| $user = Read-Host -Prompt "Server Username" | |
| $keyname = Read-Host -Prompt "Key alias" | |
| $keypassword = Read-Host -Prompt "Key password" | |
| $sshDir = "$HOME/.ssh" | |
| $keyPath = "$sshDir/$keyname" | |
| if (Test-Path $keyPath) { | |
| Write-Host "Error: Key already exists at $keyPath" -ForegroundColor Red | |
| $overwrite = Read-Host "Overwrite? (y/n)" |
| { | |
| "theme": "Gruvbox Dark Hard", | |
| "base_keymap": "VSCode", | |
| "buffer_font_family": "BerkeleyMono Nerd Font", | |
| "buffer_font_size": 15, | |
| "vim_mode": true, | |
| "relative_line_numbers": true, | |
| "cursor_blink": false, | |
| "scrollbar": { | |
| "show": "never" |
| [ | |
| { | |
| "context": "Editor && VimControl && !VimWaiting && !menu", | |
| "bindings": { | |
| "ctrl-w z": "workspace::ToggleZoom", | |
| "ctrl-w t": "terminal_panel::ToggleFocus", | |
| "g ]": "editor::GoToDiagnostic", | |
| "g [": "editor::GoToPrevDiagnostic", | |
| "g r": "editor::FindAllReferences", | |
| "shift-k": "editor::Hover", |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
Josh Forisha's implementation of opensimplex noise in a format that's friendly with using on openprocessing